var github.com/vmihailenco/msgpack/v5.typeEncMap

12 uses

	github.com/vmihailenco/msgpack/v5 (current package)
		encode_value.go#L43: 	if v, ok := typeEncMap.Load(typ); ok {
		encode_value.go#L47: 	typeEncMap.Store(typ, fn)
		encode_value.go#L55: 		if _, ok := typeEncMap.Load(typ.Elem()); ok {
		ext.go#L51: 	typeEncMap.Store(extID, typ)
		ext.go#L52: 	typeEncMap.Store(typ, extEncoder)
		ext.go#L54: 		typeEncMap.Store(typ.Elem(), makeExtEncoderAddr(extEncoder))
		ext.go#L59: 	t, ok := typeEncMap.Load(extID)
		ext.go#L63: 	typeEncMap.Delete(extID)
		ext.go#L65: 	typeEncMap.Delete(typ)
		ext.go#L67: 		typeEncMap.Delete(typ.Elem())
		types.go#L41: 	typeEncMap sync.Map
		types.go#L51: 		typeEncMap.Store(typ, enc)